home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / modules / nessus-2.2.8.mo / usr / lib / nessus / plugins / redhat-RHSA-2002-261.nasl < prev    next >
Text File  |  2005-01-14  |  3KB  |  102 lines

  1. #
  2. # (C) Tenable Network Security
  3. #
  4. #
  5. # The text of this plugin is (C) Red Hat Inc.
  6.  
  7. if ( ! defined_func("bn_random") ) exit(0);
  8. if(description)
  9. {
  10.  script_id(12336);
  11.  script_version ("$Revision: 1.4 $");
  12.  script_cve_id("CVE-2002-1158", "CVE-2002-1159");
  13.  
  14.  name["english"] = "RHSA-2002-261: Canna";
  15.  
  16.  script_name(english:name["english"]);
  17.  
  18.  desc["english"] = '
  19.  
  20.   The Canna server, used for Japanese character input, has two security
  21.   vulnerabilities including an exploitable buffer overflow that allows a
  22.   local
  23.   user to gain \'bin\' user privileges. Updated packages for Red Hat Linux
  24.   Advanced Server are available.
  25.  
  26.   [Updated 13 Jan 2003]
  27.   Added fixed packages for the Itanium (IA64) architecture.
  28.  
  29.   [Updated 06 Feb 2003]
  30.   Added fixed packages for Advanced Workstation 2.1
  31.  
  32.   Canna is a kana-kanji conversion server which is necessary for Japanese
  33.   language character input.
  34.  
  35.   A buffer overflow bug in the Canna server up to and including version 3.5b2
  36.   allows a local user to gain the privileges of the user \'bin\' which can
  37.   lead to further exploits. The Common Vulnerabilities and Exposures project
  38.   (cve.mitre.org) has assigned the name CAN-2002-1158 to this issue.
  39.  
  40.   In addition, it was discovered that request validation was lacking in Canna
  41.   server versions 3.6 and earlier. A malicious remote user could exploit this
  42.   vulnerability to leak information or cause a denial of service attack.
  43.   (CAN-2002-1159)
  44.  
  45.   Red Hat Linux Advanced Server ships with a Canna package vulnerable
  46.   to these issues; however, the package is normally only installed when
  47.   Japanese language support is selected during installation.
  48.  
  49.   All users of Canna are advised to upgrade to these errata packages which
  50.   contain a backported security fix and are not vulnerable to this issue.
  51.  
  52.   Red Hat would like to thank hsj and AIDA Shinra for the responsible
  53.   disclosure of these issues.
  54.  
  55.  
  56.  
  57.  
  58. Solution : http://rhn.redhat.com/errata/RHSA-2002-261.html
  59. Risk factor : High';
  60.  
  61.  script_description(english:desc["english"]);
  62.  
  63.  summary["english"] = "Check for the version of the Canna packages";
  64.  script_summary(english:summary["english"]);
  65.  
  66.  script_category(ACT_GATHER_INFO);
  67.  
  68.  script_copyright(english:"This script is Copyright (C) 2004 Tenable Network Security");
  69.  family["english"] = "Red Hat Local Security Checks";
  70.  script_family(english:family["english"]);
  71.  
  72.  script_dependencies("ssh_get_info.nasl");
  73.  
  74.  script_require_keys("Host/RedHat/rpm-list");
  75.  exit(0);
  76. }
  77.  
  78. include("rpm.inc");
  79. if ( rpm_check( reference:"Canna-3.5b2-50.as21.1", release:"RHEL2.1") )
  80. {
  81.  security_hole(0);
  82.  exit(0);
  83. }
  84. if ( rpm_check( reference:"Canna-devel-3.5b2-50.as21.1", release:"RHEL2.1") )
  85. {
  86.  security_hole(0);
  87.  exit(0);
  88. }
  89. if ( rpm_check( reference:"Canna-libs-3.5b2-50.as21.1", release:"RHEL2.1") )
  90. {
  91.  security_hole(0);
  92.  exit(0);
  93. }
  94.  
  95. if ( rpm_exists(rpm:"Canna-", release:"RHEL2.1") )
  96. {
  97.  set_kb_item(name:"CVE-2002-1158", value:TRUE);
  98.  set_kb_item(name:"CVE-2002-1159", value:TRUE);
  99. }
  100.  
  101. set_kb_item(name:"RHSA-2002-261", value:TRUE);
  102.